home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
- REM **** If Victor Charlie's Home Directory is in your path, this is a fast
- REM **** "WHEREIS" to locate multiple files on ALL hard drives with 1 command.
- REM **** Wildcards fully supported. Note the use of the "hush" parameter.
-
- if "%1"=="" ECHO What are you looking for? Usage: %0 filespec [filespec ...]
- if "%1"=="" GOTO END
-
- ECHO Victor Charlie's VCHECK searching all hard drives for
- ECHO %1 %2 %3 %4 %5 %6 %7 %8 %9
- ECHO Hit any key to stop search at any time.
- ECHO Drive\Directory File Size Bitcheck
- ECHO ────────── ────── ──────
- VCHECK hush %1 %2 %3 %4 %5 %6 %7 %8 %9
-
- :END
-
-